home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / dino / dino_bot.1 / source / library / copy2.s < prev    next >
Encoding:
Text File  |  1991-03-10  |  384 b   |  41 lines

  1.     .file "copy.c"
  2.     .text
  3.     .align    4
  4. / sp+20 n
  5. / sp+12 d
  6. / sp+16 s
  7. D_mem_copy:
  8.     pushl    %esi
  9.     pushl    %ebx
  10.     pushl    %edi
  11.  
  12.     movl    24(%esp),%ecx
  13.     movl    16(%esp),%edi
  14.     movl    20(%esp),%esi
  15.     cld
  16.     rep 
  17.     smovb
  18.  
  19.     .align    4
  20.  
  21. /    .ef:    /
  22.  
  23.     popl    %edi
  24.     popl    %ebx
  25.     popl    %esi
  26.     ret
  27.     .align    4
  28.  
  29.     .align    4
  30.     .data
  31. /i    %eax    local
  32.  
  33. /d    %ecx    local
  34. /s    16(%esp)    local
  35. /n    20(%esp)    local
  36.     .text
  37.     .data
  38.     .globl    D_mem_copy
  39.     .text
  40.  
  41.